home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’97
/
Warrior’s Progress
/
source code
/
Source
/
Libraries
/
Events
/
Event Classes
/
Application Events
/
ResumeEvent.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-06-28
|
341 b
|
24 lines
|
[
TEXT/CWIE
]
// ResumeEvent.h
#ifndef ResumeEvent_h
#define ResumeEvent_h
#ifndef Event_h
#include "Event.h"
#endif
class ResumeEvent: public Event
{
private:
bool convertClipboard;
public:
ResumeEvent( const EventRecord& event );
bool ConvertClipboard() const { return convertClipboard; }
virtual void Respond() const;
};
#endif